home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / NiceStuff.subproj / MiscURICell.h < prev    next >
Encoding:
Text File  |  1996-02-07  |  567 b   |  31 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface MiscURICell:Cell /*" :Object "*/
  5.     {
  6.     char *uri;        /*" The URI the cell represents "*/
  7.     }
  8.  
  9.  
  10. /*" Initialisers "*/
  11.  
  12. - init;
  13. - initURICell:(const char *)aURI;
  14.  
  15. /*" Attributes "*/
  16.  
  17. - (void)setURI:(const char *)aURI;
  18. - (const char *)uri;
  19.  
  20. /*" Tracking the mouse "*/
  21.  
  22. + (BOOL)prefersTrackingUntilMouseUp;
  23. - (BOOL)trackMouse:(NXEvent *)theEvent inRect:(const NXRect *)cellFrame ofView:aView;
  24.  
  25. /*" Drag Source "*/
  26.  
  27. - (NXDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
  28. - pasteboard:sender provideData:(NXAtom)datatype;
  29.  
  30. @end
  31.